home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / ljfont10.arc / DEMO.BAT < prev    next >
DOS Batch File  |  1986-05-29  |  376b  |  20 lines

  1. echo off
  2. if %1X == X goto ERROR
  3.  
  4. rem load the font
  5. copy  /b ft10.sfp %1
  6. rem copy a font test to the printer
  7. copy  fnt.txt     %1
  8. copy  boxchr.txt  %1
  9. copy  graph.txt   %1
  10. copy  read.me     %1
  11. goto EXIT
  12.  
  13. :ERROR
  14. echo  Correct Syntax is:
  15. echo  DEMO {PRN, LPT1, LPT2, COM1, COM2}
  16. echo  where the device name is where the LaserJet Plus is connected
  17.  
  18. :EXIT
  19. exit
  20.